home *** CD-ROM | disk | FTP | other *** search
/ PC World 2006 November / PCWorld_2006-11_cd.bin / system / innosetup / isetup-5.1.8.exe / {app} / Examples / MyDll / Delphi / MyDll.dpr
Text File  |  2003-04-13  |  224b  |  15 lines

  1. library MyDll;
  2.  
  3. uses
  4.   Windows;
  5.  
  6. procedure MyDllFunc(hWnd: Integer; lpText, lpCaption: PChar; uType: Cardinal); stdcall;
  7. begin
  8.   MessageBox(hWnd, lpText, lpCaption, uType);
  9. end;
  10.  
  11. exports MyDllFunc;
  12.  
  13. begin
  14. end.
  15.